body {
    font-family: Arial, sans-serif;
}

.blog-header {
    background-color: #103756;
    background-image: url(/images/bannerbackground.png);
    color: #f8f9fa;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-in-out;
}
.custom-image {
    height: 500px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image covers the area without stretching */
    width: 100%; /* Keeps the width proportional */
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.blog-meta {
    color: #6c757d;
}

.blog-content article {
    animation: fadeIn 1s ease-in-out;
}

blockquote {
    border-left: 5px solid #ff7b00;
    padding-left: 15px;
    font-style: italic;
}

.social-share a {
    transition: background-color 0.3s ease;
}

.social-share a:hover {
    background-color: #0056b3;
}

.sidebar {
    background-color: #103756;
    color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-left: 40px;
}

.recent-blogs .card {
    animation: fadeInUp 1s ease-in-out;
}

.motivational-quotes img {
    animation: fadeIn 1s ease-in-out;
}
.btn-primary1{
    background-color: #ff7b00;
    border: #ff7b00;
    color: #ffffff;
}
.btn-primary1:hover{
    background-color: #ffffff;
    border: 1px solid #ff7b00;
    color: #ff7b00;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Ensure higher specificity by targeting the footer directly */
footer a.text-decoration-none {
    color: #FF7B00 !important; /* Use !important to override other styles */
}

footer a.text-decoration-none:hover {
    color: #FF7B00 !important; /* Ensure the hover color is also orange */
}

footer i {
    color: #FF7B00 !important; /* Use !important to override other styles */
}

